The SixBit Application Programming Interface
Paging Calls

Calls to one of the List methods could possibly return many results.  If desired, the results can be returned in pages using the StartID and Count parameters on the List method.  For example, the Buyers_List method could be performed in a loop to return 1000 buyers at a time by setting StartID to the first id and the Count to 1000.  Each subsequent call would bump up the StartID by 1000.  Hence the second call would have a StartID of 1001 and a Count of 1000, and so on.